home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Programming / LEDA / prog / Makefile.amiga < prev    next >
Makefile  |  1994-11-14  |  1KB  |  56 lines

  1. echo "Makefile for example programs for the CBM Amiga family"
  2. SET EXTENSION "high"
  3. ASK "Generate a version for EVERY Amiga (Y) or optimized 68020, 68881 code (N)?"
  4. IF WARN
  5.   SET EXTENSION "generic"
  6. ENDIF
  7.  
  8. cd basic
  9.   echo "Entering directory ``basic''"
  10.   date
  11.   make -f makefile.amiga.$EXTENSION
  12.   date
  13.   cd /
  14. cd dict
  15.   echo "Entering directory ``dict''"
  16.   date
  17.   make -f makefile.amiga.$EXTENSION
  18.   date
  19.   cd /
  20. cd prio
  21.   echo "Entering directory ``prio''"
  22.   date
  23.   make -f makefile.amiga.$EXTENSION
  24.   date
  25.   cd /
  26. cd graph
  27.   echo "Entering directory ``graph''"
  28.   date
  29.   make -f makefile.amiga.$EXTENSION
  30.   date
  31.   cd /
  32. cd plane
  33.   echo "Entering directory ``plane''"
  34.   date
  35.   make -f makefile.amiga.$EXTENSION
  36.   date
  37.   cd /
  38. cd graphics
  39.   echo "Entering directory ``graphics''"
  40.   date
  41.   make -f makefile.amiga.$EXTENSION
  42.   date
  43.   cd /
  44.  
  45. Ask "Delete *"**.o*" files?"
  46. IF WARN
  47.     execute cleanup.amiga
  48. ENDIF
  49.  
  50. ; Gerhard Leibrock, November 1994
  51. ; Neuhaeuselerstr. 12, 66459 Kirkel, T:(+49) 06849/6134, GERMANY
  52. ;
  53. ; fach5@cipsol.cs.uni-sb.de
  54. ;
  55.  
  56.